home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr35 / jamapi.zip / JAMUTIL.ZIP / MAKEFILE.MSC < prev    next >
Text File  |  1993-07-01  |  676b  |  31 lines

  1. #
  2. #   JAM(mbp) - The Joaquim-Andrew-Mats Message Base Proposal
  3. #
  4. #   JAM Utility
  5. #
  6. #   Written by Mats Wallin
  7. #
  8. #   ----------------------------------------------------------------------
  9. #
  10. #   makefile (JAMmb)
  11. #
  12. #   Make file for the JAMUTIL program and Microsoft C/C++ 7.0
  13. #
  14. #   Copyright 1993 Joaquim Homrighausen, Andrew Milner, Mats Birch, and
  15. #   Mats Wallin. ALL RIGHTS RESERVED.
  16. #
  17. CMDL    = C
  18. CC      = cl
  19. CFLAGS  = /c -A$(CMDL) /O /W4 /D__MSDOS__
  20. LINK    = link
  21. LFLAGS  = /m /noi
  22. LJAMLIB = jamcapi$(CMDL).lib
  23.  
  24. OBJS    = jamutil.obj
  25.  
  26. .c.obj:
  27.     $(CC) $(CFLAGS) $*.c
  28.  
  29. jamutil.exe:   $(OBJS)
  30.     $(LINK) $(LFLAGS) $(OBJS),$*,$*,$(LJAMLIB);
  31.